Fix shader errs

This commit is contained in:
2026-01-14 14:00:09 +01:00
parent 85df7154a7
commit 81096a9b5f
5 changed files with 84 additions and 86 deletions

7
build/vertex.glsl Normal file
View File

@@ -0,0 +1,7 @@
#version 460 core
layout (location = 0) in vec3 aPos;
void main(){
gl_Position = vec4(aPos, 1.0);
};