mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
28 lines
864 B
Text
28 lines
864 B
Text
attribute highp vec4 _glesVertex;
|
|
attribute mediump vec3 _glesNormal;
|
|
uniform highp vec4 _ProjectionParams;
|
|
uniform highp mat4 glstate_matrix_modelview0;
|
|
uniform highp mat4 glstate_matrix_mvp;
|
|
varying highp vec4 xlv_TEXCOORD0;
|
|
varying highp vec3 xlv_TEXCOORD1;
|
|
void main ()
|
|
{
|
|
highp vec3 tmpvar_1;
|
|
tmpvar_1 = _glesNormal;
|
|
highp vec4 tmpvar_2;
|
|
tmpvar_2 = (glstate_matrix_mvp * _glesVertex);
|
|
highp vec4 o_3;
|
|
highp vec4 tmpvar_4;
|
|
tmpvar_4 = (tmpvar_2 * 0.5);
|
|
highp vec2 tmpvar_5;
|
|
tmpvar_5.x = tmpvar_4.x;
|
|
tmpvar_5.y = (tmpvar_4.y * _ProjectionParams.x);
|
|
o_3.xy = (tmpvar_5 + tmpvar_4.w);
|
|
o_3.zw = tmpvar_2.zw;
|
|
gl_Position = tmpvar_2;
|
|
xlv_TEXCOORD0 = o_3;
|
|
xlv_TEXCOORD1 = mix (((glstate_matrix_modelview0 * _glesVertex).xyz * vec3(-1.0, -1.0, 1.0)), tmpvar_1, vec3(float((tmpvar_1.z != 0.0))));
|
|
}
|
|
|
|
|
|
// inputs: 2, stats: 9 alu 0 tex 0 flow
|