blob: 1872af67fe855816bff7ef172f3191b8fc502e11 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Pass-2: Dump Texture
vec4 t = texture2D(gcu_FboTexUnit, gcv_FboTexCoord.st);
#if 0
if( 0.0 == t.a ) {
discard; // discard freezes NV tegra2 compiler
}
#endif
mgl_FragColor = t;
|