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