mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-08 06:14:08 -05:00
11 lines
227 B
GLSL
11 lines
227 B
GLSL
#version 450
|
|
|
|
layout(location=0) in vec3 a_position;
|
|
layout(location=1) in vec2 a_tex_coords;
|
|
|
|
layout(location=0) out vec2 v_tex_coords;
|
|
|
|
void main() {
|
|
v_tex_coords = a_tex_coords;
|
|
gl_Position = vec4(a_position, 1.0);
|
|
} |