mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-12 22:31:25 -07:00
22 lines
524 B
Odin
22 lines
524 B
Odin
package sdl2
|
|
|
|
import "core:c"
|
|
|
|
when ODIN_OS == .Windows {
|
|
@(ignore_duplicates)
|
|
foreign import lib "SDL2.lib"
|
|
} else {
|
|
@(ignore_duplicates)
|
|
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) ---
|
|
}
|