9 lines
130 B
GLSL
9 lines
130 B
GLSL
uniform sampler2D diffuseTexture;
|
|
varying mediump vec2 texCoord;
|
|
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = vec4(1.0, 1.0, 1.0, 1.0);
|
|
}
|