mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
16 lines
229 B
Text
16 lines
229 B
Text
|
varying lowp float xx;
|
||
|
void main ()
|
||
|
{
|
||
|
lowp float c_1;
|
||
|
if ((xx < 0.0)) {
|
||
|
discard;
|
||
|
};
|
||
|
c_1 = (xx + xx);
|
||
|
c_1 = (c_1 + xx);
|
||
|
c_1 = (c_1 + xx);
|
||
|
lowp vec4 tmpvar_2;
|
||
|
tmpvar_2 = vec4(c_1);
|
||
|
gl_FragColor = tmpvar_2;
|
||
|
}
|
||
|
|