summaryrefslogtreecommitdiff
path: root/memory.h
diff options
context:
space:
mode:
authorFox Caminiti <fox@foxcam.net>2022-10-06 14:30:48 -0400
committerFox Caminiti <fox@foxcam.net>2022-10-06 14:30:48 -0400
commit0b0aa3b06fac0bcdeb31d5e2211d1ba149531692 (patch)
tree91f0d9689151b7fb985de50b2c8b12ccd7a65440 /memory.h
parenta4c1e537b0cb2540535357d880e46f63b38c134f (diff)
GL renderer preparation
Diffstat (limited to 'memory.h')
-rw-r--r--memory.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/memory.h b/memory.h
index 47c737e..51b207a 100644
--- a/memory.h
+++ b/memory.h
@@ -14,6 +14,7 @@ enum memory_table_list {
F_Nodes,
F_Strings,
+ B_ScratchSpace,
B_CachedBitmaps,
};
@@ -59,6 +60,7 @@ struct history_entry_list {
struct memory {
memory_table Slot[16];
history_entry_list History;
+ uint64 ScratchPos;
bool32 IsFileSaved;
};