Files
Odin/vendor/sdl2/sdl_metal.odin
T
2023-05-02 12:06:41 +01:00

20 lines
480 B
Odin

package sdl2
import "core:c"
when ODIN_OS == .Windows {
foreign import lib "SDL2.lib"
} else {
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) ---
}