added more code to render my first scene; STILL WITH ERRORS

This commit is contained in:
2025-08-28 18:21:53 +02:00
parent 31c4b6708a
commit b24be88bdc
5 changed files with 111 additions and 29 deletions

View File

@ -0,0 +1,12 @@
#version 330 core
//in vec3 fragPos;
//in vec3 fragNormal;
out vec4 FragColor;
void main()
{
// FragColor = vec4(fragPos, 1.0);
FragColor = vec4(1.0, 1.0, 1.0 , 1.0);
}