rename vattr to VertexAttribute

This commit is contained in:
MihailRis
2024-11-17 01:00:27 +03:00
parent 65287b3273
commit 5240fe6226
11 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ PostProcessing::PostProcessing() {
-1.0f, -1.0f, -1.0f, 1.0f, 1.0f, 1.0f,
-1.0f, -1.0f, 1.0f, 1.0f, 1.0f, -1.0f
};
vattr attrs[] {{2}, {0}};
VertexAttribute attrs[] {{2}, {0}};
quadMesh = std::make_unique<Mesh>(vertices, 6, attrs);
}