kubi/shaders/selection_box.vert

11 lines
194 B
GLSL
Raw Normal View History

2023-01-28 03:35:55 +00:00
#version 150 core
in vec3 position;
uniform vec3 u_position;
uniform mat4 perspective;
uniform mat4 view;
void main() {
gl_Position = perspective * view * vec4(position + u_position, 1.);
}