6 lines
76 B
GLSL
6 lines
76 B
GLSL
#version 110
|
|
varying float test;
|
|
void main() {
|
|
gl_FragColor.x = test;
|
|
}
|