mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-12 18:38:43 -06:00
9 lines
115 B
GLSL
9 lines
115 B
GLSL
#version 300 es
|
|
|
|
precision highp float;
|
|
in vec2 position;
|
|
|
|
void main() {
|
|
gl_Position = vec4(position, 0., 1.);
|
|
}
|