12 lines
293 B
Scheme
12 lines
293 B
Scheme
|
(import (scheme)
|
||
|
(chicken base)
|
||
|
(chicken foreign))
|
||
|
(import-syntax (sdl3 internal utilities))
|
||
|
|
||
|
(foreign-declare "#include <SDL3/SDL_blendmode.h>")
|
||
|
|
||
|
(define-sdl-const-values
|
||
|
blendmode unsigned-int32
|
||
|
none blend blend-premultiplied add add add-premultiplied
|
||
|
mod mul invalid)
|