5 lines
73 B
GLSL
5 lines
73 B
GLSL
in uniform half2 point;
|
|
half4 main() {
|
|
return half4(point, point);
|
|
}
|