Wip reverse indexing

This commit is contained in:
mcrcortex
2024-01-23 11:46:47 +10:00
parent 0baafeb310
commit a3216b26eb
2 changed files with 11 additions and 7 deletions

View File

@@ -13,9 +13,9 @@ ivec3 extractPosition(SectionMeta section) {
}
uint extractQuadStart(SectionMeta meta) {
return meta.header.z;
return meta.drawdata.x;
}
uint extractQuadCount(SectionMeta meta) {
return meta.header.w;
return meta.drawdata.y;
}