mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-07 16:18:52 +00:00
sdl2: add openbsd support
This commit is contained in:
Vendored
+2
-1
@@ -6,6 +6,7 @@ when ODIN_OS == .Windows { foreign import lib "SDL2.lib" }
|
||||
when ODIN_OS == .Linux { foreign import lib "system:SDL2" }
|
||||
when ODIN_OS == .Darwin { foreign import lib "system:SDL2" }
|
||||
when ODIN_OS == .FreeBSD { foreign import lib "system:SDL2" }
|
||||
when ODIN_OS == .OpenBSD { foreign import lib "system:SDL2" }
|
||||
|
||||
/* This is a guess for the cacheline size used for padding.
|
||||
* Most x86 processors have a 64 byte cache line.
|
||||
@@ -41,4 +42,4 @@ foreign lib {
|
||||
SIMDAlloc :: proc(len: c.size_t) -> rawptr ---
|
||||
SIMDRealloc :: proc(mem: rawptr, len: c.size_t) -> rawptr ---
|
||||
SIMDFree :: proc(ptr: rawptr) ---
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user