Reduced and reuse memory section, remove copies during section fetch pipeline, remove stack gathering and string forming from IdNotYetComputedException wip on cleaner

This commit is contained in:
mcrcortex
2024-12-14 16:23:46 +10:00
parent fdeed5c257
commit 6ed4c92c94
19 changed files with 130 additions and 67 deletions

View File

@@ -13,7 +13,7 @@ layout(binding = LIST_BUFFER_BINDING, std430) restrict readonly buffer SetListBu
layout(location=0) uniform uint count;
#define SET_TO uint(-1)
void main() {
uint id = gl_InvocationID;//It might be this or gl_GlobalInvocationID.x
uint id = gl_GlobalInvocationID.x;
if (count <= id) {
return;
}