Finally fix the crash! Loaded memory for pixels that where labeled as invalid aka shouldn't fill

This commit is contained in:
Krzosa Karol
2022-07-04 15:49:25 +02:00
parent 3a4fb4ecdc
commit df4f010554
4 changed files with 56 additions and 34 deletions

View File

@@ -25,7 +25,8 @@ const char *profile_scope_names[] = {
struct ProfileState {
U64 samples[5096*32];
S64 i;
S32 pixel_counts[5096*32];
S32 i;
};
global ProfileState profile_scopes[ProfileScopeName_Count];