10 lines
132 B
Text
10 lines
132 B
Text
|
#version 330 core
|
||
|
|
||
|
in vec2 vTexCoord;
|
||
|
|
||
|
unfirom sampler2D aTexture0;
|
||
|
|
||
|
void main() {
|
||
|
gl_FragColor = texture(aTexture0, vTexCoord);
|
||
|
}
|