Progress on VEFontCache port, only cache_glyph_to_atlas & shape_text_uncached left

This commit is contained in:
2024-06-04 18:44:12 -04:00
parent 26e53bf327
commit 991e7a81c0
8 changed files with 488 additions and 175 deletions

View File

@ -89,7 +89,7 @@ hmap_chained_clear :: proc( using self : HMapChained($Type))
if slot == nil {
continue
}
for probe_slot = slot.next; probe_slot != nil; probe_slot = probe_slot.next {
for probe_slot := slot.next; probe_slot != nil; probe_slot = probe_slot.next {
slot.occupied = false
}
slot.occupied = false