6 lines
111 B
GLSL
6 lines
111 B
GLSL
in fragmentProcessor child;
|
|
|
|
half4 main(float2 coord) {
|
|
return sample(child) + sample(child, coord / 2);
|
|
}
|