renderer-tutorial/res/shaders/vert.shader

9 lines
101 B
Text
Raw Normal View History

2020-05-17 08:59:15 +00:00
#version 330 core
layout(location = 0) in vec4 position;
void main()
{
gl_Position = position;
}