Hash :
314cd806
Author :
Thomas de Grivel
Date :
2025-10-16T20:45:03
wip macos regression
#!/bin/sh
# Wrapper script to run kc3_window_sdl2_demo_debug with ANGLE (OpenGL ES via Metal)
# Get the directory where this script is located
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
# Set environment variables for SDL2 to use ANGLE
export SDL_VIDEO_EGL_DRIVER="/usr/local/lib/libEGL.dylib"
export SDL_VIDEO_GL_DRIVER="/usr/local/lib/libGLESv2.dylib"
# Run the demo
exec "${SCRIPT_DIR}/kc3_window_sdl2_demo_debug" "$@"