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