mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-31 04:57:57 +00:00
13 lines
148 B
GLSL
13 lines
148 B
GLSL
|
#version 120
|
||
|
|
||
|
attribute vec2 position;
|
||
|
attribute vec2 uv;
|
||
|
|
||
|
varying vec2 uvCoord;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
uvCoord = uv;
|
||
|
gl_Position = vec4(position,0,1);
|
||
|
}
|