mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +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" }
|
||||
|
||||
ALPHA_OPAQUE :: 255
|
||||
ALPHA_TRANSPARENT :: 0
|
||||
@@ -234,4 +235,4 @@ foreign lib {
|
||||
GetRGB :: proc(pixel: u32, format: ^PixelFormat, r, g, b: ^u8) ---
|
||||
GetRGBA :: proc(pixel: u32, format: ^PixelFormat, r, g, b, a: ^u8) ---
|
||||
CalculateGammaRamp :: proc(gamma: f32, ramp: ^[256]u16) ---
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user