change things to use the constant

This commit is contained in:
mcrcortex
2025-05-01 14:36:28 +10:00
parent 1d7e985593
commit fbcef60f67
3 changed files with 18 additions and 14 deletions

View File

@@ -41,8 +41,8 @@ layout(binding = RENDER_TRACKER_BINDING, std430) restrict writeonly buffer rende
#ifdef HAS_STATISTICS
layout(binding = STATISTICS_BUFFER_BINDING, std430) restrict buffer statisticsBuffer {
uint traversalCounts[5];
uint renderCounts[5];
uint traversalCounts[MAX_ITERATIONS];
uint renderCounts[MAX_ITERATIONS];
};
#endif