mirror of
https://github.com/DrBeef/Raze.git
synced 2024-12-11 05:11:20 +00:00
12 lines
151 B
Text
12 lines
151 B
Text
|
|
||
|
attribute vec4 PositionInProjection;
|
||
|
attribute vec2 UV;
|
||
|
|
||
|
varying vec2 TexCoord;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = PositionInProjection;
|
||
|
TexCoord = UV;
|
||
|
}
|