10 lines
150 B
Plaintext
Executable File
10 lines
150 B
Plaintext
Executable File
uniform sampler2D Texture;
|
|
varying vec2 texCoord;
|
|
|
|
void main()
|
|
{
|
|
vec4 color = texture2D(Texture,texCoord).rgba;
|
|
|
|
gl_FragColor = color;
|
|
|
|
} |