First implementation of SSBO, vertex pulling

This commit is contained in:
2025-11-10 11:58:11 +00:00
parent 187751ec26
commit 5e93c7631d
7 changed files with 201 additions and 131 deletions
+11
View File
@@ -0,0 +1,11 @@
#version 450 core
layout (location=0) out vec4 fCol;
layout (location=1) out vec4 fPos;
in vec4 vCol;
in vec4 vPos;
void main()
{
//fCol = vec4 (1,0.5,0,0.5);
fCol = vCol;
fPos = vPos;
}