10 lines
103 B
Text
10 lines
103 B
Text
|
in vec2 Texcoord;
|
||
|
|
||
|
OUTPUT
|
||
|
|
||
|
uniform sampler2D tex;
|
||
|
|
||
|
void main() {
|
||
|
outColor = texture(tex, Texcoord);
|
||
|
}
|