Fixed simple textured shader.

This commit is contained in:
2023-11-01 10:49:02 -05:00
parent 4315a7e847
commit 96291cbd88
2 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@ void SimpleTexturedShader::compile() {
{ "aTexCoord", 1 }
},
// Vertex Shader
"#version 300 es\n"
"#version 330 core\n"
"layout (location = 0) in vec3 aPos;\n"
"layout (location = 1) in vec2 aTexCoord;\n" +