Test commit, to be reverted

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14770 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
vincentlj 2013-12-24 01:59:35 +00:00
parent 88ac0ba6cf
commit 7f51c9737b

View File

@ -11,5 +11,5 @@ void main()
vec3 specular = texture2D(diffuse_and_spec, texc).www;
float ao = texture2D(ambient_occlusion, texc).x;
gl_FragColor = vec4(diffuse + specular + ao * ambient, 1.0);
gl_FragColor = vec4(diffuse + ao * ambient, 1.0);
}