mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 04:52:16 +00:00
3d538b4c8f
No more glVertex, glTexCoord or glColor calls anywhere.
13 lines
149 B
Text
13 lines
149 B
Text
#version 330
|
|
|
|
in vec4 i_vertPos;
|
|
in vec4 i_texCoord;
|
|
|
|
out vec2 v_texCoord;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = i_vertPos;
|
|
v_texCoord = i_texCoord.st;
|
|
}
|
|
|