Fixed examples resources not being commited Temporary removed static build configurations
11 lines
128 B
GLSL
11 lines
128 B
GLSL
#version 110
|
|
|
|
varying vec2 TexCoord;
|
|
|
|
uniform sampler2D texture;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = texture2D(texture, TexCoord);
|
|
}
|