rectangle render

This commit is contained in:
2025-11-24 09:22:10 +00:00
parent a17b76f366
commit a786d26dde
5 changed files with 223 additions and 1 deletions

13
shaders/triangle.vert Normal file
View File

@@ -0,0 +1,13 @@
#version 330 core
layout(location = 0) in vec3 position; // Vertex position
out vec3 color; // Output color to the fragment shader
uniform mat4 model;
uniform mat4 view;
uniform mat4 projection;
void main() {
gl_Position = projection * view * model * vec4(position, 1.0); // Apply transformation matrices
color = position + vec3(0.5); // Set the color based on the vertex position
}