mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-07 05:21:12 +00:00
1 line
164 B
Text
1 line
164 B
Text
#version 110
|
|
|
|
attribute vec4 i_vertPos;
|
|
attribute vec2 i_texCoord;
|
|
|
|
varying vec2 v_texCoord;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = i_vertPos;
|
|
v_texCoord = i_texCoord;
|
|
}
|