Skip to content
Snippets Groups Projects
Commit 9ca57fdf authored by Tofu Buzzard's avatar Tofu Buzzard
Browse files

HACK to make deferred imposters more-or-less work.

(transplanted from e41d116728dd1e453273047ba7fde9455a1811d4)
parent cae8a075
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ uniform sampler2D specularMap; ...@@ -14,7 +14,7 @@ uniform sampler2D specularMap;
void main() void main()
{ {
vec4 col = texture2D(diffuseMap, gl_TexCoord[0].xy); vec4 col = texture2D(diffuseMap, gl_TexCoord[0].xy);
gl_FragData[0] = vec4(col.rgb, col.a <= 0.5 ? 0.0 : 0.005); gl_FragData[0] = vec4(col.rgb, col != vec4(0,0,0,0));
gl_FragData[1] = texture2D(specularMap, gl_TexCoord[0].xy); gl_FragData[1] = texture2D(specularMap, gl_TexCoord[0].xy);
gl_FragData[2] = vec4(texture2D(normalMap, gl_TexCoord[0].xy).xyz, 0.0); gl_FragData[2] = texture2D(normalMap, gl_TexCoord[0].xy);
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment