mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
sdl2: add openbsd support
This commit is contained in:
Vendored
+2
-1
@@ -7,6 +7,7 @@ when ODIN_OS == .Windows { foreign import lib "SDL2_net.lib" }
|
||||
when ODIN_OS == .Linux { foreign import lib "system:SDL2_net" }
|
||||
when ODIN_OS == .Darwin { foreign import lib "system:SDL2_net" }
|
||||
when ODIN_OS == .FreeBSD { foreign import lib "system:SDL2_net" }
|
||||
when ODIN_OS == .OpenBSD { foreign import lib "system:SDL2_net" }
|
||||
|
||||
bool :: SDL.bool
|
||||
|
||||
@@ -188,4 +189,4 @@ Read16 :: #force_inline proc "c" (areap: rawptr) -> u16 {
|
||||
Read32 :: #force_inline proc "c" (areap: rawptr) -> u32 {
|
||||
area := (^[4]u8)(areap)
|
||||
return u32(area[0])<<24 | u32(area[1])<<16 | u32(area[2])<<8 | u32(area[3])
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user