mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
11 lines
205 B
Text
11 lines
205 B
Text
varying highp vec2 xlv_VPOS;
|
|
void main ()
|
|
{
|
|
mediump vec4 tmpvar_1;
|
|
highp vec4 tmpvar_2;
|
|
tmpvar_2.zw = vec2(0.0, 0.0);
|
|
tmpvar_2.xy = xlv_VPOS;
|
|
tmpvar_1 = tmpvar_2;
|
|
gl_FragData[0] = tmpvar_1;
|
|
}
|
|
|