Mostly reviewing progress so far

Prepping in the background for swapping raylib with sokol.
This commit is contained in:
2024-05-21 23:35:36 -04:00
parent 31bc207c75
commit 405716e52b
19 changed files with 98 additions and 89 deletions

View File

@ -77,10 +77,10 @@ vec3i_to_vec3 :: #force_inline proc "contextless" (v : Vec3i) -> Vec3 {return tr
Range2 :: struct #raw_union {
using min_max : struct {
min, max : Vec2
min, max : Vec2,
},
using pts : struct {
p0, p1 : Vec2
p0, p1 : Vec2,
},
using xy : struct {
x0, y0 : f32,