mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +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;
|
||
|
}
|