mirror of
https://github.com/DrBeef/Raze.git
synced 2024-12-15 07:01:21 +00:00
13 lines
160 B
Text
13 lines
160 B
Text
#version 330
|
|
|
|
attribute vec4 i_vertPos;
|
|
attribute vec2 i_texCoord;
|
|
|
|
out vec2 v_texCoord;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = i_vertPos;
|
|
v_texCoord = i_texCoord;
|
|
}
|
|
|