generated from sigonasr2/JavaProjectTemplate
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
248 B
11 lines
248 B
2 years ago
|
// 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;
|
||
|
|