25 lines
942 B
Go
25 lines
942 B
Go
//go:build darwin && (sdl || sdl3) && !rgfw
|
|
// +build darwin
|
|
// +build sdl sdl3
|
|
// +build !rgfw
|
|
|
|
package rl
|
|
|
|
/*
|
|
#cgo darwin LDFLAGS: -framework Cocoa -framework IOKit -framework CoreVideo -framework CoreFoundation
|
|
#cgo darwin CFLAGS: -Wno-deprecated-declarations -Wno-implicit-const-int-float-conversion
|
|
#cgo darwin,sdl CFLAGS: -DPLATFORM_DESKTOP_SDL
|
|
#cgo darwin,sdl3 CFLAGS: -DPLATFORM_DESKTOP_SDL -DPLATFORM_DESKTOP_SDL3
|
|
#cgo darwin,sdl pkg-config: sdl2
|
|
#cgo darwin,sdl3 pkg-config: sdl3
|
|
|
|
#cgo darwin,!es2,!es3 LDFLAGS: -framework OpenGL
|
|
|
|
#cgo darwin,opengl11,!es2,!es3 CFLAGS: -DGRAPHICS_API_OPENGL_11
|
|
#cgo darwin,opengl21,!es2,!es3 CFLAGS: -DGRAPHICS_API_OPENGL_21
|
|
#cgo darwin,opengl43,!es2,!es3 CFLAGS: -DGRAPHICS_API_OPENGL_43
|
|
#cgo darwin,!opengl11,!opengl21,!opengl43,!es2,!es3 CFLAGS: -DGRAPHICS_API_OPENGL_33
|
|
#cgo darwin,es2,!es3 CFLAGS: -DGRAPHICS_API_OPENGL_ES2
|
|
#cgo darwin,es3,!es2 CFLAGS: -DGRAPHICS_API_OPENGL_ES3
|
|
*/
|
|
import "C"
|