vox/assets/shaders/teapot/teapot.vert

10 lines
134 B
GLSL
Raw Normal View History

2022-03-29 07:07:56 -05:00
#version 140
in vec3 position;
in vec3 normal;
uniform mat4 matrix;
void main() {
gl_Position = matrix * vec4(position, 1.0);
}