Carp/core/SDL_image.carp
2020-10-10 20:01:18 +02:00

14 lines
419 B
Plaintext

(posix-only
(system-include "SDL2/SDL_image.h")
(add-pkg "SDL2_image"))
(windows-only
(system-include "SDL_image.h")
(add-cflag (str "-I" sdl-windows-header-path))
(add-lib (str sdl-windows-library-path "SDL2_image.lib ")))
(defmodule IMG
(register load-texture (Fn [(Ptr SDL_Renderer) (Ptr CChar)] (Ptr SDL_Texture)) "IMG_LoadTexture")
(register load (Fn [(Ptr CChar)] (Ptr SDL_Surface)) "IMG_Load")
)