Añadiendo mlx

This commit is contained in:
2025-11-14 15:10:19 +01:00
parent 06267858e8
commit 5c40a00540
61 changed files with 27644 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
#version 330 core
layout(location = 0) in vec3 aPos;
layout(location = 1) in vec2 aTexCoord;
layout(location = 2) in int aTexIndex;
out vec2 TexCoord;
flat out int TexIndex;
uniform mat4 ProjMatrix;
void main()
{
gl_Position = ProjMatrix * vec4(aPos, 1.0);
TexCoord = aTexCoord;
TexIndex = aTexIndex;
}