Began to reduce direct referencing of mutable state struct

This commit is contained in:
2024-12-30 12:22:26 -05:00
parent 9da86c1f4b
commit 57d51fc7b1
8 changed files with 90 additions and 66 deletions

View File

@ -428,9 +428,17 @@ make :: proc {
make_multi_pointer,
}
// measure_text_size :: proc {
// measure_text_size_raylib,
// }
max :: proc {
linalg.max_single,
linalg.max_double,
linalg.max_triple,
}
min :: proc {
linalg.min_single,
linalg.min_double,
linalg.min_triple,
}
mov_avg_exp :: proc {
mov_avg_exp_f32,