Add UVs to vert shader

This commit is contained in:
Phireh 2025-05-25 17:56:43 +02:00
commit 8675683d10
4 changed files with 139 additions and 29 deletions

View file

@ -1,5 +1,6 @@
#version 330 core
layout (location = 0) in vec3 pos;
layout (location = 1) in vec2 uv;
uniform mat4 model;
uniform mat4 view;
uniform mat4 proj;