mirror of
https://github.com/cyberarm/i-mic-fps.git
synced 2025-12-16 08:02:36 +00:00
10 lines
144 B
GLSL
10 lines
144 B
GLSL
# version 330
|
|
|
|
in vec3 outColor;
|
|
in vec4 outNormal;
|
|
in vec3 outUV;
|
|
in float outTextureID;
|
|
|
|
void main() {
|
|
gl_FragColor = vec4(outColor, 1.0);
|
|
} |