mirror of
https://github.com/nicbarker/clay.git
synced 2025-09-18 12:36:17 +00:00
Initialize text measurement hashmap (#25)
This commit is contained in:
parent
52b3f6a14e
commit
c60fb1300f
3
clay.h
3
clay.h
|
@ -3125,6 +3125,9 @@ void Clay_Initialize(Clay_Arena arena, Clay_Dimensions layoutDimensions) {
|
|||
for (int i = 0; i < Clay__layoutElementsHashMap.capacity; ++i) {
|
||||
Clay__layoutElementsHashMap.internalArray[i] = -1;
|
||||
}
|
||||
for (int i = 0; i < Clay__measureTextHashMap.capacity; ++i) {
|
||||
Clay__measureTextHashMap.internalArray[i] = 0;
|
||||
}
|
||||
Clay__measureTextHashMapInternal.length = 1; // Reserve the 0 value to mean "no next element"
|
||||
Clay__layoutDimensions = layoutDimensions;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue