Графические конвейеры для вокселей и нод

This commit is contained in:
2025-02-13 22:22:10 +06:00
parent a27f055af8
commit 8c13938b06
24 changed files with 1239 additions and 65 deletions

View File

@@ -0,0 +1,10 @@
#version 450
layout(location = 0) in uvec3 Vertex;
layout(location = 0) out uvec3 Geometry;
void main()
{
Geometry = Vertex;
}