mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
20 lines
687 B
Odin
20 lines
687 B
Odin
package sdl2
|
|
|
|
import "core:c"
|
|
|
|
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" }
|
|
|
|
MetalView :: distinct rawptr
|
|
|
|
@(default_calling_convention="c", link_prefix="SDL_")
|
|
foreign lib {
|
|
Metal_CreateView :: proc(window: ^Window) -> MetalView ---
|
|
Metal_DestroyView :: proc(view: MetalView) ---
|
|
Metal_GetLayer :: proc(view: MetalView) -> rawptr ---
|
|
Metal_GetDrawableSize :: proc(window: ^Window, w, h: ^c.int) ---
|
|
}
|