mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
11 lines
306 B
Text
11 lines
306 B
Text
|
mediump vec4 xlat_main( in highp vec2 pos );
|
||
|
mediump vec4 xlat_main( in highp vec2 pos ) {
|
||
|
return vec4( pos, 0.000000, 0.000000);
|
||
|
}
|
||
|
varying highp vec2 xlv_VPOS;
|
||
|
void main() {
|
||
|
mediump vec4 xl_retval;
|
||
|
xl_retval = xlat_main( highp vec2(xlv_VPOS));
|
||
|
gl_FragData[0] = mediump vec4( xl_retval);
|
||
|
}
|