Fix unexported FragData

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14797 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
vincentlj 2013-12-26 18:28:35 +00:00
parent 5512a72d62
commit 4f36e43b14
2 changed files with 2 additions and 0 deletions

View File

@ -22,4 +22,5 @@ void main()
gl_FragData[0] = texture2D (texture, gl_TexCoord[0].st);
gl_FragData[1] = vec4(0.5 * FragmentNormal + 0.5, gl_FragCoord.z);
gl_FragData[2] = vec4(0.);
}

View File

@ -22,4 +22,5 @@ void main() {
gl_FragData[0] = detail0 * gl_Color;
gl_FragData[1] = vec4(nor, gl_FragCoord.z);
gl_FragData[2] = vec4(0.);
}