This commit is contained in:
Edward R. Gonzalez 2024-06-28 07:51:47 -04:00
parent a28303bad6
commit cdf0f3e3bd
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# VE Font Cache : Odin Port
This is a port of the library base on [fork](https://github.com/hypernewbie/VEFontCache)
This is a port of the library based on [fork](https://github.com/hypernewbie/VEFontCache)
Its original purpose was for use in game engines, however its rendeirng quality and performance is more than adequate for many other applications.

View File

@ -180,7 +180,7 @@ else
}
simd_to_vec2 :: #force_inline proc "contextless" (v: Vec2_SIMD) -> Vec2 {
return Vec2{simd.extract(v, 0), simd.extract(v, 1)}
return Vec2{ simd.extract(v, 0), simd.extract(v, 1) }
}
vec2_add_simd :: #force_inline proc "contextless" (a, b: Vec2) -> Vec2 {