mirror of
https://github.com/QIDITECH/QIDIStudio.git
synced 2026-01-31 00:48:41 +03:00
13 lines
176 B
GLSL
13 lines
176 B
GLSL
#version 110
|
|
|
|
attribute vec4 v_position;
|
|
attribute vec2 v_tex_coords;
|
|
|
|
varying vec2 tex_coords;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = ftransform();
|
|
tex_coords = v_tex_coords;
|
|
}
|