add tracking to dbgi scopes

This commit is contained in:
Ryan Fleury
2025-02-21 13:23:12 -08:00
parent 03337a7280
commit 3c8f58cb38
2 changed files with 11 additions and 2 deletions
+3
View File
@@ -225,6 +225,7 @@ typedef struct DI_Scope DI_Scope;
struct DI_Scope
{
DI_Scope *next;
DI_Scope *prev;
DI_Touch *first_touch;
DI_Touch *last_touch;
};
@@ -233,6 +234,8 @@ typedef struct DI_TCTX DI_TCTX;
struct DI_TCTX
{
Arena *arena;
DI_Scope *first_scope;
DI_Scope *last_scope;
DI_Scope *free_scope;
DI_Touch *free_touch;
};