mirror of
https://github.com/QIDITECH/QIDIStudio.git
synced 2026-01-31 00:48:41 +03:00
8 lines
98 B
Plaintext
8 lines
98 B
Plaintext
|
|
#version 110
|
||
|
|
|
||
|
|
attribute vec3 v_position;
|
||
|
|
|
||
|
|
void main()
|
||
|
|
{
|
||
|
|
gl_Position = vec4(v_position, 1.0);
|
||
|
|
}
|