mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-30 15:59:37 -05:00
9 lines
129 B
GLSL
9 lines
129 B
GLSL
#version 330
|
|
|
|
uniform sampler2D quadTex;
|
|
in vec2 texCoord;
|
|
out vec4 color;
|
|
|
|
void main() {
|
|
color = texture(quadTex, texCoord);
|
|
} |