stk-code_catmod/data/shaders/coloredquad.frag
vincentlj 7778a71c0a OGL32CTX: Use correct type in coloredquad.frag
Spotted by arb debug output too.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14927 178a84e3-b1eb-0310-8ba1-8eac791a3b58
2014-01-05 18:54:40 +00:00

7 lines
79 B
GLSL

#version 130
uniform ivec4 color;
void main()
{
gl_FragColor = color;
}