eglglessink: GLSL: Minor named index access tweak xyz -> rgb

This commit is contained in:
Reynaldo H. Verdejo Pinochet 2012-10-10 12:22:24 -03:00 committed by Sebastian Dröge
parent 5c2b1dc631
commit 0ed02803f7

View file

@ -195,7 +195,7 @@ static const char *frag_COPY_prog = {
"void main(void)" "void main(void)"
"{" "{"
" vec4 t = texture2D(tex, opos);" " vec4 t = texture2D(tex, opos);"
" gl_FragColor = vec4(t.xyz, 1.0);" " gl_FragColor = vec4(t.rgb, 1.0);"
"}" "}"
}; };