wedge/shaders/cell.vert

10 lines
155 B
GLSL
Raw Normal View History

2019-07-27 10:03:19 +00:00
#version 330
in vec2 point;
uniform mat4 target;
uniform mat4 projection;
void main() {
gl_Position = projection * target * vec4(point, 0.0, 1.0);
}