shaders.glsl.vs_shape.bin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glx Show documentation
Show all versions of glx Show documentation
UI harness for the LX framework based upon LWJGL + bgfx.
The newest version!
VSH u_modelViewProj ? attribute vec3 a_position;
uniform mat4 u_modelViewProj;
void main ()
{
vec4 tmpvar_1;
tmpvar_1.w = 1.0;
tmpvar_1.xyz = a_position;
gl_Position = (u_modelViewProj * tmpvar_1);
}