mirror of
https://github.com/MCLx86/xtreemtest.git
synced 2025-12-14 02:45:30 +01:00
Initial commit
This commit is contained in:
14
client/shaders/selection_shader/opengl_vertex.glsl
Normal file
14
client/shaders/selection_shader/opengl_vertex.glsl
Normal file
@@ -0,0 +1,14 @@
|
||||
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