mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-07 05:21:12 +00:00
62e9112133
All this comes from a time when I didn't use version.h so it's better to do it the same way as GZDoom to allow easy renaming of the engine.
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;
|
|
}
|
|
|