mirror of
https://github.com/nicbarker/clay.git
synced 2026-02-06 12:48:49 +00:00
Fix uint64 usage for wasm
This commit is contained in:
parent
b2b50724e2
commit
32d1a31dfe
2 changed files with 1 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,6 +1,5 @@
|
||||||
cmake-build-debug/
|
cmake-build-debug/
|
||||||
cmake-build-release/
|
cmake-build-release/
|
||||||
build/
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.idea/
|
.idea/
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
|
||||||
2
clay.h
2
clay.h
|
|
@ -1390,7 +1390,7 @@ struct Clay_Context {
|
||||||
bool externalScrollHandlingEnabled;
|
bool externalScrollHandlingEnabled;
|
||||||
uint32_t debugSelectedElementId;
|
uint32_t debugSelectedElementId;
|
||||||
uint32_t generation;
|
uint32_t generation;
|
||||||
uint64_t arenaResetOffset;
|
uintptr_t arenaResetOffset;
|
||||||
Clay_Arena internalArena;
|
Clay_Arena internalArena;
|
||||||
// Layout Elements / Render Commands
|
// Layout Elements / Render Commands
|
||||||
Clay_LayoutElementArray layoutElements;
|
Clay_LayoutElementArray layoutElements;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue