blob: 27b4b27f918497d60bd25122d3b920684a713cd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
shader_body
{
//************************************************************
// NOTE: the body of this shader will be replaced by MilkDrop
// whenever a pre-MilkDrop-2 preset is loaded!
//************************************************************
// sample previous frame
ret = tex2D( sampler_main, uv ).xyz;
// darken over time
ret -= 0.004;
//************************************************************
// NOTE: the body of this shader will be replaced by MilkDrop
// whenever a pre-MilkDrop-2 preset is loaded!
//************************************************************
}
|