Initial commit
This commit is contained in:
15
client/shaders/minimap_shader/opengl_vertex.glsl
Normal file
15
client/shaders/minimap_shader/opengl_vertex.glsl
Normal file
@@ -0,0 +1,15 @@
|
||||
uniform mat4 mWorld;
|
||||
|
||||
varying lowp vec4 varColor;
|
||||
varying mediump vec2 varTexCoord;
|
||||
|
||||
void main(void)
|
||||
{
|
||||
varTexCoord = inTexCoord0.st;
|
||||
gl_Position = mWorldViewProj * inVertexPosition;
|
||||
#ifdef GL_ES
|
||||
varColor = inVertexColor.bgra;
|
||||
#else
|
||||
varColor = inVertexColor;
|
||||
#endif
|
||||
}
|
||||
Reference in New Issue
Block a user